home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / dll_gen / csrplus / about.fr_ / about.fr
Text File  |  1995-01-25  |  4KB  |  120 lines

  1. VERSION 2.00
  2. Begin Form About 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "About"
  6.    ClientHeight    =   2265
  7.    ClientLeft      =   1095
  8.    ClientTop       =   1485
  9.    ClientWidth     =   4275
  10.    ControlBox      =   0   'False
  11.    Height          =   2670
  12.    Left            =   1035
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   2265
  17.    ScaleWidth      =   4275
  18.    Top             =   1140
  19.    Width           =   4395
  20.    Begin CommandButton CmdOkay 
  21.       BackColor       =   &H00C0C0C0&
  22.       Cancel          =   -1  'True
  23.       Caption         =   "O &K A Y"
  24.       Default         =   -1  'True
  25.       FontBold        =   -1  'True
  26.       FontItalic      =   0   'False
  27.       FontName        =   "MS Sans Serif"
  28.       FontSize        =   9.75
  29.       FontStrikethru  =   0   'False
  30.       FontUnderline   =   0   'False
  31.       Height          =   435
  32.       Left            =   360
  33.       TabIndex        =   0
  34.       Top             =   1620
  35.       Width           =   3555
  36.    End
  37.    Begin Label Label3 
  38.       Alignment       =   2  'Center
  39.       BackStyle       =   0  'Transparent
  40.       Caption         =   "Another shareware product by Digital PowerTOOLS"
  41.       FontBold        =   0   'False
  42.       FontItalic      =   0   'False
  43.       FontName        =   "Times New Roman"
  44.       FontSize        =   8.25
  45.       FontStrikethru  =   0   'False
  46.       FontUnderline   =   0   'False
  47.       ForeColor       =   &H00000000&
  48.       Height          =   255
  49.       Left            =   180
  50.       TabIndex        =   3
  51.       Top             =   1200
  52.       Width           =   3915
  53.    End
  54.    Begin Label Label2 
  55.       Alignment       =   2  'Center
  56.       BackStyle       =   0  'Transparent
  57.       Caption         =   "Label2"
  58.       FontBold        =   -1  'True
  59.       FontItalic      =   0   'False
  60.       FontName        =   "Times New Roman"
  61.       FontSize        =   9.75
  62.       FontStrikethru  =   0   'False
  63.       FontUnderline   =   0   'False
  64.       ForeColor       =   &H00000080&
  65.       Height          =   255
  66.       Left            =   360
  67.       TabIndex        =   2
  68.       Top             =   900
  69.       Width           =   3555
  70.    End
  71.    Begin Label Label1 
  72.       Alignment       =   2  'Center
  73.       BackStyle       =   0  'Transparent
  74.       Caption         =   "CsrPlus.DLL"
  75.       FontBold        =   -1  'True
  76.       FontItalic      =   0   'False
  77.       FontName        =   "Times New Roman"
  78.       FontSize        =   18
  79.       FontStrikethru  =   0   'False
  80.       FontUnderline   =   0   'False
  81.       ForeColor       =   &H00800000&
  82.       Height          =   435
  83.       Left            =   1080
  84.       TabIndex        =   1
  85.       Top             =   240
  86.       Width           =   2835
  87.    End
  88.    Begin Image Image1 
  89.       Height          =   480
  90.       Left            =   360
  91.       Picture         =   About.FGX:0000
  92.       Top             =   240
  93.       Width           =   480
  94.    End
  95.    Begin Line Line1 
  96.       BorderColor     =   &H00808000&
  97.       BorderWidth     =   2
  98.       X1              =   1080
  99.       X2              =   3900
  100.       Y1              =   600
  101.       Y2              =   600
  102.    End
  103. End
  104.  
  105. Sub CmdOkay_Click ()
  106.     Unload Me
  107. End Sub
  108.  
  109. Sub Form_Load ()
  110.     FormCenterScreen Me
  111.     Label2.Caption = "Copyright " + Chr$(169) + " 1995 by Digital PowerTOOLS"
  112.     Screen.MousePointer = 0
  113. End Sub
  114.  
  115. Sub Form_Paint ()
  116.     DoForm3D Me, "raised", 2, 0
  117.     DoForm3D Me, "sunken", 2, 2
  118. End Sub
  119.  
  120.